home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / src / casefiddle_p.h < prev    next >
C/C++ Source or Header  |  1993-10-05  |  743b  |  20 lines

  1. #ifndef __CASEFIDDLE_P_H__
  2. #define __CASEFIDDLE_P_H__
  3.  
  4. extern Lisp_Object upcase_initials_region _P_((Lisp_Object b, Lisp_Object e));
  5. extern Lisp_Object operate_on_word _P_((Lisp_Object arg));
  6. extern _VOID_ syms_of_casefiddle _P_((void));
  7. extern _VOID_ keys_of_casefiddle _P_((void));
  8.  
  9. DEFUN_P(Fupcase, (Lisp_Object obj));
  10. DEFUN_P(Fdowncase, (Lisp_Object obj));
  11. DEFUN_P(Fcapitalize, (Lisp_Object obj));
  12. DEFUN_P(Fupcase_region, (Lisp_Object b, Lisp_Object e));
  13. DEFUN_P(Fdowncase_region, (Lisp_Object b, Lisp_Object e));
  14. DEFUN_P(Fcapitalize_region, (Lisp_Object b, Lisp_Object e));
  15. DEFUN_P(Fupcase_word, (Lisp_Object arg));
  16. DEFUN_P(Fdowncase_word, (Lisp_Object arg));
  17. DEFUN_P(Fcapitalize_word, (Lisp_Object arg));
  18.     
  19. #endif
  20.